getAll

inline suspend fun <T, ID, REPO : ReadStandardCRUDRepo<T, ID>> REPO.getAll(crossinline methodCaller: suspend REPO.(Pagination) -> PaginationResult<T>): List<T>
inline suspend fun <Key, Value, REPO : ReadStandardKeyValueRepo<Key, Value>> REPO.getAll(crossinline methodCaller: suspend REPO.(Pagination) -> PaginationResult<Key>): List<Pair<Key, Value>>
inline suspend fun <Key, Value, REPO : ReadOneToManyKeyValueRepo<Key, Value>> REPO.getAll(crossinline methodCaller: suspend REPO.(Pagination) -> PaginationResult<Key>): List<Pair<Key, List<Value>>>